home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / src / ov-complex.h < prev    next >
C/C++ Source or Header  |  1996-11-07  |  4KB  |  154 lines

  1. /*
  2.  
  3. Copyright (C) 1996 John W. Eaton
  4.  
  5. This file is part of Octave.
  6.  
  7. Octave is free software; you can redistribute it and/or modify it
  8. under the terms of the GNU General Public License as published by the
  9. Free Software Foundation; either version 2, or (at your option) any
  10. later version.
  11.  
  12. Octave is distributed in the hope that it will be useful, but WITHOUT
  13. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15. for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with Octave; see the file COPYING.  If not, write to the Free
  19. Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20.  
  21. */
  22.  
  23. #if !defined (octave_complex_h)
  24. #define octave_complex_h 1
  25.  
  26. #if defined (__GNUG__)
  27. #pragma interface
  28. #endif
  29.  
  30. #include <cstdlib>
  31.  
  32. #include <string>
  33.  
  34. class ostream;
  35.  
  36. #include "mx-base.h"
  37. #include "oct-alloc.h"
  38. #include "str-vec.h"
  39.  
  40. #include "error.h"
  41. #include "ov-base.h"
  42. #include "ov-typeinfo.h"
  43.  
  44. class Octave_map;
  45. class octave_value_list;
  46.  
  47. class tree_walker;
  48.  
  49. // Complex scalar values.
  50.  
  51. class
  52. octave_complex : public octave_base_value
  53. {
  54. public:
  55.  
  56.   octave_complex (void)
  57.     : octave_base_value () { }
  58.  
  59.   octave_complex (const Complex& c)
  60.     : octave_base_value (), scalar (c) { }
  61.  
  62.   octave_complex (const octave_complex& c)
  63.     : octave_base_value (), scalar (c.scalar) { }
  64.  
  65.   ~octave_complex (void) { }
  66.  
  67.   octave_value *clone (void) { return new octave_complex (*this); }
  68.  
  69.   void *operator new (size_t size)
  70.     { return allocator.alloc (size); }
  71.  
  72.   void operator delete (void *p, size_t size)
  73.     { allocator.free (p, size); }
  74.  
  75.   octave_value *try_narrowing_conversion (void);
  76.  
  77.   octave_value index (const octave_value_list& idx) const;
  78.  
  79.   int rows (void) const { return 1; }
  80.   int columns (void) const { return 1; }
  81.  
  82.   bool is_defined (void) const { return true; }
  83.  
  84.   bool is_complex_scalar (void) const { return true; }
  85.  
  86.   octave_value all (void) const { return (scalar != 0.0); }
  87.   octave_value any (void) const { return (scalar != 0.0); }
  88.  
  89.   bool is_complex_type (void) const { return true; }
  90.  
  91.   bool is_scalar_type (void) const { return true; }
  92.  
  93.   bool is_numeric_type (void) const { return true; }
  94.  
  95.   // XXX FIXME XXX ???
  96.   bool valid_as_scalar_index (void) const { return false; }
  97.   bool valid_as_zero_index (void) const { return false; }
  98.  
  99.   bool is_true (void) const { return (scalar != 0.0); }
  100.  
  101.   bool is_empty (void) const { return (rows () == 0 && columns () == 0); }
  102.  
  103.   double double_value (bool = false) const;
  104.  
  105.   Matrix matrix_value (bool = false) const;
  106.  
  107.   Complex complex_value (bool = false) const;
  108.  
  109.   ComplexMatrix complex_matrix_value (bool = false) const;
  110.  
  111.   octave_value not (void) const { return octave_value (scalar == 0.0); }
  112.  
  113.   octave_value uminus (void) const { return octave_value (- scalar); }
  114.  
  115.   octave_value transpose (void) const { return octave_value (scalar); }
  116.  
  117.   octave_value hermitian (void) const { return octave_value (conj (scalar)); }
  118.  
  119.   void increment (void) { scalar += 1.0; }
  120.  
  121.   void decrement (void) { scalar -= 1.0; }
  122.  
  123.   void print (ostream& os, bool pr_as_read_syntax = false);
  124.  
  125.   int type_id (void) const { return t_id; }
  126.  
  127.   string type_name (void) const { return t_name; }
  128.  
  129.   static int static_type_id (void) { return t_id; }
  130.  
  131.   static void register_type (void)
  132.     { t_id = octave_value_typeinfo::register_type (t_name); }
  133.  
  134. private:
  135.  
  136.   Complex scalar;
  137.  
  138.   static octave_allocator allocator;
  139.  
  140.   // Type id of complex scalar objects, set in register_type().
  141.   static int t_id;
  142.  
  143.   // Type name of complex scalar objects, defined in ov-complex.cc.
  144.   static const string t_name;
  145. };
  146.  
  147. #endif
  148.  
  149. /*
  150. ;;; Local Variables: ***
  151. ;;; mode: C++ ***
  152. ;;; End: ***
  153. */
  154.